home *** CD-ROM | disk | FTP | other *** search
/ MacWorld Secrets (4th Edition) / Mac Secrets CD 4th Ed.toast.sit / Mac Secrets CD 4th Ed.toast / Apple Advanced Technologies / Apple Speech Technologies 1.5 / US Capital Quiz Demo / US Capital Quiz / US Capital Quiz.dxr / 00001_Main.ls next >
Encoding:
Text File  |  1996-03-22  |  6.2 KB  |  272 lines

  1. global SpeechObj, SpeechErr, gListening, gStatusMsg, MainLM, CapitalLM, kStartQuiz, kMapChannel, kWaveChannel, gWaveState
  2.  
  3. on startMovie
  4.   cursor(4)
  5.   set kWaveChannel to 3
  6.   set kStartQuiz to 4
  7.   set kMapChannel to 6
  8.   set the cursor of sprite 5 to [34, 35]
  9.   put "Starting Up" into field "Status"
  10.   set gListening to 0
  11.   set the cpuHogTicks to 1
  12.   puppetSprite(kWaveChannel, 1)
  13.   puppetSprite(kStartQuiz, 1)
  14.   puppetSprite(kMapChannel, 1)
  15.   updateStage()
  16.   if existsXtra("SpeechXtra") = 0 then
  17.     openXLib("SpeechXtra")
  18.     if existsXtra("SpeechXtra") = 0 then
  19.       alert("Unable to load the Speech Xtra. Make sure Speech Recognition is installed.")
  20.       quit()
  21.     end if
  22.   end if
  23.   if objectp(SpeechObj) then
  24.     set SpeechObj to 0
  25.   end if
  26.   set SpeechObj to new(xtra("SpeechXtra"), birth(script "aCallBack"), 2)
  27.   set result to value(SpeechObj)
  28.   if result < 0 then
  29.     if SpeechErr = -5551 then
  30.       alert("This demo requires Speech Recognition extension version 1.2.1 or later.")
  31.     else
  32.       if SpeechErr = -5132 then
  33.         alert("Unable to detect the microphone." & RETURN & RETURN & "Please make sure the microphone is plugged in and try again.")
  34.       else
  35.         if SpeechErr = -108 then
  36.           alert("There is not enough memory to create the Speech Xtra." & RETURN & RETURN & "Try decreasing the application's memory requirements.")
  37.         else
  38.           alert("Unable to create the Speech Xtra.")
  39.         end if
  40.       end if
  41.     end if
  42.     quit()
  43.   else
  44.     set MainLM to createLM("<Main>", field "Lexicon")
  45.     set CapitalLM to birth(script "aLanguage", "<Capital>")
  46.     mAddItems(CapitalLM, field "States", 2)
  47.     mAddPhrase(MainLM, "<Capital>", 13)
  48.     mRelease(CapitalLM)
  49.     mSetLanguage(MainLM)
  50.     mRelease(MainLM)
  51.   end if
  52.   cursor(-1)
  53.   put " " into field "Status"
  54.   updateStage()
  55. end
  56.  
  57. on idle
  58.   if gListening then
  59.     showStatus()
  60.   end if
  61. end
  62.  
  63. on showStatus
  64.   set status to mStatus(SpeechObj)
  65.   if status = 1 then
  66.     cursor(-1)
  67.     put gStatusMsg into field "Status"
  68.   else
  69.     if status = 2 then
  70.       animateWave()
  71.     end if
  72.   end if
  73.   updateStage()
  74. end
  75.  
  76. on stopMovie
  77.   stopListening()
  78.   if objectp(SpeechObj) then
  79.     set SpeechObj to 0
  80.   end if
  81.   puppetSprite(kWaveChannel, 0)
  82.   puppetSprite(kMapChannel, 0)
  83.   puppetSprite(kStartQuiz, 0)
  84.   closeXLib()
  85.   clearGlobals()
  86. end
  87.  
  88. on createLM lmName, textField
  89.   if objectp(SpeechObj) then
  90.     set tmpLM to birth(script "aLanguage", lmName)
  91.     mAddField(tmpLM, textField)
  92.   end if
  93.   return tmpLM
  94. end
  95.  
  96. on startListening
  97.   global gState
  98.   if objectp(SpeechObj) then
  99.     if mGetProperty(SpeechObj, "lkmd") = 1 then
  100.       set gStatusMsg to "Push-To-Talk"
  101.     else
  102.       set gStatusMsg to "Talk Now"
  103.     end if
  104.     mStartListening(SpeechObj)
  105.     set gListening to 1
  106.     set the castNum of sprite kStartQuiz to the number of member "stop.pic"
  107.     set gWaveState to 2
  108.   end if
  109.   set gState to randomItem(field "States")
  110.   set gAttempt to 0
  111.   askQuestion()
  112.   updateStage()
  113. end
  114.  
  115. on stopListening
  116.   if objectp(SpeechObj) then
  117.     if gListening then
  118.       mStopListening(SpeechObj)
  119.       set gListening to 0
  120.       set the castNum of sprite kStartQuiz to the number of member "start.pic"
  121.       set the castNum of sprite 3 to the number of member "logo2.pic"
  122.     end if
  123.   end if
  124.   cursor(-1)
  125.   showMap("United States.PIC")
  126.   put " " into field "Status"
  127.   set gStatusMsg to " "
  128.   updateStage()
  129. end
  130.  
  131. on toggleListening
  132.   if gListening then
  133.     stopListening()
  134.   else
  135.     startListening()
  136.   end if
  137. end
  138.  
  139. on doRecognize phrase, phraseID
  140.   global gState, gAttempt
  141.   set firstItem to item 1 of phraseID
  142.   if firstItem = 1 then
  143.     stopListening()
  144.   else
  145.     if firstItem = 2 then
  146.       quit()
  147.     else
  148.       if firstItem = 13 then
  149.         if item 2 of gState = phrase then
  150.           sayIt("Correct")
  151.           set gState to randomItem(field "States")
  152.           set gAttempt to 0
  153.           askQuestion()
  154.         else
  155.           checkAttempt()
  156.           askQuestion()
  157.         end if
  158.       else
  159.         if firstItem = -1 then
  160.           checkAttempt()
  161.         else
  162.           if firstItem = 3 then
  163.             giveAnswer()
  164.           end if
  165.           if firstItem <> 5 then
  166.             set gState to randomItem(field "States")
  167.             set gAttempt to 0
  168.           end if
  169.         end if
  170.         askQuestion()
  171.       end if
  172.     end if
  173.   end if
  174. end
  175.  
  176. on askQuestion
  177.   global gState, gAttempt
  178.   if gListening then
  179.     mStopListening(SpeechObj)
  180.   end if
  181.   sayIt("What Capital")
  182.   set stateName to item 1 of gState
  183.   sayIt(stateName)
  184.   showMap(stateName & ".PIC")
  185.   updateStage()
  186.   if gListening then
  187.     mStartListening(SpeechObj)
  188.   end if
  189. end
  190.  
  191. on giveAnswer
  192.   global gState, gAttempt
  193.   if gListening then
  194.     mStopListening(SpeechObj)
  195.   end if
  196.   set stateName to item 1 of gState
  197.   set capitalName to item 2 of gState
  198.   sayIt("Capital of")
  199.   sayIt(stateName)
  200.   sayIt("is")
  201.   sayIt(capitalName)
  202.   if gListening then
  203.     mStartListening(SpeechObj)
  204.   end if
  205. end
  206.  
  207. on checkAttempt
  208.   global gState, gAttempt
  209.   set gAttempt to gAttempt + 1
  210.   if gAttempt = 3 then
  211.     giveAnswer()
  212.     set gState to randomItem(field "States")
  213.     set gAttempt to 0
  214.   else
  215.     sayIt("Try Again")
  216.   end if
  217. end
  218.  
  219. on sayIt theText
  220.   set sndName to theText & ".AIFF"
  221.   preLoadCast(the number of member sndName)
  222.   puppetSound(sndName)
  223.   updateStage()
  224.   repeat while 1 = soundBusy(1)
  225.     if (the ticks mod 5) = 0 then
  226.       animateWave()
  227.     end if
  228.   end repeat
  229.   puppetSound(0)
  230.   updateStage()
  231. end
  232.  
  233. on randomItem textField
  234.   global gState
  235.   set lineCount to the number of lines in textField
  236.   repeat while 1
  237.     set theItem to line random(lineCount) of textField
  238.     if theItem <> gState then
  239.       exit repeat
  240.     end if
  241.   end repeat
  242.   return theItem
  243. end
  244.  
  245. on sayAll textField, theItem
  246.   repeat with index = 1 to the number of lines in textField
  247.     sayIt(item theItem of line index of textField)
  248.   end repeat
  249. end
  250.  
  251. on animateWave
  252.   global gWaveState
  253.   put "Don't Talk" into field "Status"
  254.   set the castNum of sprite 3 to gWaveState + 245
  255.   updateStage()
  256.   set gWaveState to (gWaveState mod 3) + 1
  257. end
  258.  
  259. on showMap whichMap
  260.   set the castNum of sprite kMapChannel to the number of member whichMap
  261. end
  262.  
  263. on existsXtra whichXtra
  264.   set numXtras to the number of xtras
  265.   repeat with index = 1 to numXtras
  266.     if the name of xtra(index) = whichXtra then
  267.       return 1
  268.     end if
  269.   end repeat
  270.   return 0
  271. end
  272.